home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 127 / PC Guia 127.iso / Software / Produtividade / OpenOffice.org 2.0.1 / openofficeorg1.cab / all.js < prev    next >
Text File  |  2005-07-13  |  51KB  |  1,069 lines

  1. /* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Mozilla Public License Version
  6.  * 1.1 (the "License"); you may not use this file except in compliance with
  7.  * the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/MPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is mozilla.org code.
  16.  *
  17.  * The Initial Developer of the Original Code is
  18.  * Netscape Communications Corporation.
  19.  * Portions created by the Initial Developer are Copyright (C) 1998
  20.  * the Initial Developer. All Rights Reserved.
  21.  *
  22.  * Contributor(s):
  23.  * Benjamin Smedberg <bsmedberg@covad.net>
  24.  *
  25.  * Alternatively, the contents of this file may be used under the terms of
  26.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  27.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28.  * in which case the provisions of the GPL or the LGPL are applicable instead
  29.  * of those above. If you wish to allow use of your version of this file only
  30.  * under the terms of either the GPL or the LGPL, and not to allow others to
  31.  * use your version of this file under the terms of the MPL, indicate your
  32.  * decision by deleting the provisions above and replace them with the notice
  33.  * and other provisions required by the GPL or the LGPL. If you do not delete
  34.  * the provisions above, a recipient may use your version of this file under
  35.  * the terms of any one of the MPL, the GPL or the LGPL.
  36.  *
  37.  * ***** END LICENSE BLOCK ***** */
  38.  
  39. /* The prefs in this file are shipped with the GRE and should apply to all
  40.  * embedding situations. Application-specific preferences belong somewhere else,
  41.  * for example xpfe/bootstrap/browser-prefs.js
  42.  *
  43.  * Platform-specific #ifdefs at the end of this file override the generic
  44.  * entries at the top.
  45.  */
  46.  
  47. // SYNTAX HINTS:  dashes are delimiters.  Use underscores instead.
  48. //  The first character after a period must be alphabetic.
  49.  
  50. pref("keyword.URL", "http://www.google.com/search?ie=UTF-8&oe=utf-8&q=");
  51. pref("keyword.enabled", false);
  52. pref("general.useragent.locale", "chrome://navigator/locale/navigator.properties");
  53. pref("general.useragent.contentlocale", "chrome://navigator-region/locale/region.properties");
  54.  
  55. pref("general.config.obscure_value", 13); // for MCD .cfg files
  56.  
  57. pref("backups.number_of_prefs_copies", 1);
  58.  
  59. pref("browser.cache.disk.enable",           true);
  60. pref("browser.cache.disk.capacity",         51200);
  61. pref("browser.cache.memory.enable",         true);
  62. //pref("browser.cache.memory.capacity",     -1);
  63. // -1 = determine dynamically, 0 = none, n = memory capacity in kilobytes
  64. pref("browser.cache.disk_cache_ssl",        false);
  65. // 0 = once-per-session, 1 = each-time, 2 = never, 3 = when-appropriate/automatically
  66. pref("browser.cache.check_doc_frequency",   3);
  67.  
  68. pref("browser.display.use_document_fonts",  1);  // 0 = never, 1 = quick, 2 = always
  69. pref("browser.display.use_document_colors", true);
  70. pref("browser.display.use_system_colors",   false);
  71. pref("browser.display.foreground_color",    "#000000");
  72. pref("browser.display.background_color",    "#FFFFFF");
  73. pref("browser.display.force_inline_alttext", false); // true = force ALT text for missing images to be layed out inline
  74. // 0 = no external leading, 
  75. // 1 = use external leading only when font provides, 
  76. // 2 = add extra leading both internal leading and external leading are zero
  77. pref("browser.display.normal_lineheight_calc_control", 2);
  78. pref("browser.display.show_image_placeholders", true); // true = show image placeholders while image is loaded and when image is broken
  79. pref("browser.anchor_color",                "#0000EE");
  80. pref("browser.active_color",                "#EE0000");
  81. pref("browser.visited_color",               "#551A8B");
  82. pref("browser.underline_anchors",           true);
  83. pref("browser.blink_allowed",               true);
  84. pref("browser.enable_automatic_image_resizing", false);
  85.  
  86. pref("browser.display.use_focus_colors",    false);
  87. pref("browser.display.focus_background_color", "#117722");
  88. pref("browser.display.focus_text_color",     "#ffffff");
  89. pref("browser.display.focus_ring_width",     1);
  90. pref("browser.display.focus_ring_on_anything", false);
  91.  
  92. pref("browser.helperApps.alwaysAsk.force",  false);
  93. pref("browser.helperApps.neverAsk.saveToDisk", "");
  94. pref("browser.helperApps.neverAsk.openFile", "");
  95.  
  96. // xxxbsmedberg: where should prefs for the toolkit go?
  97. pref("browser.chrome.toolbar_tips",         true);
  98. // 0 = Pictures Only, 1 = Text Only, 2 = Pictures and Text
  99. pref("browser.chrome.toolbar_style",        2);
  100.  
  101.  
  102. pref("accessibility.browsewithcaret", false);
  103. pref("accessibility.warn_on_browsewithcaret", true);
  104. // Tab focus model bit field:
  105. // 1 focuses text controls, 2 focuses other form elements, 4 adds links.
  106. // Most users will want 1, 3, or 7.
  107. pref("accessibility.tabfocus", 7);
  108. pref("accessibility.usetexttospeech", "");
  109. pref("accessibility.usebrailledisplay", "");
  110. pref("accessibility.accesskeycausesactivation", true);
  111.  
  112. // Type Ahead Find
  113. pref("accessibility.typeaheadfind", true);
  114. pref("accessibility.typeaheadfind.autostart", true);
  115. pref("accessibility.typeaheadfind.linksonly", true);
  116. pref("accessibility.typeaheadfind.startlinksonly", false);
  117. pref("accessibility.typeaheadfind.timeout", 4000);
  118. pref("accessibility.typeaheadfind.enabletimeout", true);
  119. pref("accessibility.typeaheadfind.soundURL", "default");
  120. pref("accessibility.typeaheadfind.enablesound", true);
  121.  
  122. pref("browser.history_expire_days", 9);
  123.  
  124. // loading and rendering of framesets and iframes
  125. pref("browser.frames.enabled", true);
  126.  
  127. // form submission
  128. pref("browser.forms.submit.backwards_compatible", true);
  129.  
  130. // xxxbsmedberg more toolkit prefs?
  131. // Tab browser preferences.
  132. pref("browser.tabs.autoHide", true);
  133. pref("browser.tabs.forceHide", false);
  134. pref("browser.tabs.loadInBackground", false);
  135. pref("browser.tabs.opentabfor.middleclick", false);
  136. pref("browser.tabs.opentabfor.urlbar", false);
  137. pref("browser.tabs.opentabfor.windowopen", false);
  138. pref("browser.tabs.opentabfor.bookmarks", false);
  139. pref("browser.tabs.warnOnClose", true);
  140. // 0 = append, 1 = replace
  141. pref("browser.tabs.loadGroup", 1);
  142.  
  143. // lets new tab/window load something different than first window
  144. // -1 - use navigator startup preference
  145. //  0 - loads blank page
  146. //  1 - loads home page
  147. //  2 - loads last page visited
  148. pref("browser.tabs.loadOnNewTab", 0);
  149. pref("browser.windows.loadOnNewWindow", 1);
  150.  
  151. // view source
  152. pref("view_source.syntax_highlight", true);
  153. pref("view_source.wrap_long_lines", false);
  154.  
  155. // dispatch left clicks only to content in browser (still allows clicks to chrome/xul)
  156. pref("nglayout.events.dispatchLeftClickOnly", true);
  157.  
  158. // whether or not to use xbl form controls
  159. pref("nglayout.debug.enable_xbl_forms", false);
  160.  
  161. // size of scrollbar snapping region
  162. pref("slider.snapMultiplier", 6);
  163.  
  164. // option to choose plug-in finder
  165. pref("application.use_ns_plugin_finder", false);
  166.  
  167. // URI fixup prefs
  168. pref("browser.fixup.alternate.enabled", true);
  169. pref("browser.fixup.alternate.prefix", "www.");
  170. pref("browser.fixup.alternate.suffix", ".com");
  171. pref("browser.fixup.hide_user_pass", true);
  172.  
  173. // Print header customization
  174. // Use the following codes:
  175. // &T - Title
  176. // &U - Document URL
  177. // &D - Date/Time
  178. // &P - Page Number
  179. // &PT - Page Number "of" Page total
  180. // Set each header to a string containing zero or one of these codes
  181. // and the code will be replaced in that string by the corresponding data
  182. pref("print.print_headerleft", "&T");
  183. pref("print.print_headercenter", "");
  184. pref("print.print_headerright", "&U");
  185. pref("print.print_footerleft", "&PT");
  186. pref("print.print_footercenter", "");
  187. pref("print.print_footerright", "&D");
  188. pref("print.show_print_progress", true);
  189.  
  190. // xxxbsmedberg: more toolkit prefs
  191.  
  192. // When this is set to false each window has its own PrintSettings
  193. // and a chnage in one window does not affect the others
  194. pref("print.use_global_printsettings", true);
  195.  
  196. // Use the native dialog or the XP dialog?
  197. pref("print.use_native_print_dialog", false);
  198.  
  199. // Save the Printings after each print job
  200. pref("print.save_print_settings", true);
  201.  
  202. pref("print.whileInPrintPreview", true);
  203.  
  204. // Cache old Presentation when going into Print Preview
  205. pref("print.always_cache_old_pres", false);
  206.  
  207. // Enables you to specify the gap from the edge of the paper to the margin
  208. // this is used by both Printing and Print Preview
  209. pref("print.print_edge_top", 0); // 1/100 of an inch
  210. pref("print.print_edge_left", 0); // 1/100 of an inch
  211. pref("print.print_edge_right", 0); // 1/100 of an inch
  212. pref("print.print_edge_bottom", 0); // 1/100 of an inch
  213.  
  214.  
  215. // Prefs used by libeditor. Prefs specific to seamonkey composer
  216. // belong in mozilla/editor/ui/composer.js
  217.  
  218. pref("editor.use_custom_colors", false);
  219. pref("editor.htmlWrapColumn", 72);
  220. pref("editor.singleLine.pasteNewlines",     1);
  221. pref("editor.quotesPreformatted",            false);
  222. pref("editor.use_css",                       true);
  223. pref("editor.css.default_length_unit",       "px");
  224. pref("editor.resizing.preserve_ratio",       true);
  225. pref("editor.positioning.offset",            0);
  226.  
  227.  
  228. // Default Capability Preferences: Security-Critical! 
  229. // Editing these may create a security risk - be sure you know what you're doing
  230. //pref("capability.policy.default.barprop.visible.set", "UniversalBrowserWrite");
  231.  
  232. pref("capability.policy.default_policynames", "mailnews");
  233.  
  234. pref("capability.policy.default.DOMException.code", "allAccess");
  235. pref("capability.policy.default.DOMException.message", "allAccess");
  236. pref("capability.policy.default.DOMException.name", "allAccess");
  237. pref("capability.policy.default.DOMException.result", "allAccess");
  238. pref("capability.policy.default.DOMException.toString.get", "allAccess");
  239.  
  240. pref("capability.policy.default.History.back.get", "allAccess");
  241. pref("capability.policy.default.History.current", "UniversalBrowserRead");
  242. pref("capability.policy.default.History.forward.get", "allAccess");
  243. pref("capability.policy.default.History.go.get", "allAccess");
  244. pref("capability.policy.default.History.item", "UniversalBrowserRead");
  245. pref("capability.policy.default.History.next", "UniversalBrowserRead");
  246. pref("capability.policy.default.History.previous", "UniversalBrowserRead");
  247. pref("capability.policy.default.History.toString", "UniversalBrowserRead");
  248.  
  249. pref("capability.policy.default.HTMLDocument.close.get", "allAccess");
  250. pref("capability.policy.default.HTMLDocument.open.get", "allAccess");
  251.  
  252. pref("capability.policy.default.Location.hash.set", "allAccess");
  253. pref("capability.policy.default.Location.href.set", "allAccess");
  254. pref("capability.policy.default.Location.reload.get", "allAccess");
  255. pref("capability.policy.default.Location.replace.get", "allAccess");
  256.  
  257. pref("capability.policy.default.Navigator.preference", "allAccess");
  258. pref("capability.policy.default.Navigator.preferenceinternal.get", "UniversalPreferencesRead");
  259. pref("capability.policy.default.Navigator.preferenceinternal.set", "UniversalPreferencesWrite");
  260.  
  261. pref("capability.policy.default.Window.blur.get", "allAccess");
  262. pref("capability.policy.default.Window.close.get", "allAccess");
  263. pref("capability.policy.default.Window.closed", "allAccess");
  264. pref("capability.policy.default.Window.Components", "allAccess");
  265. pref("capability.policy.default.Window.document", "allAccess");
  266. pref("capability.policy.default.Window.focus.get", "allAccess");
  267. pref("capability.policy.default.Window.frames", "allAccess");
  268. pref("capability.policy.default.Window.history", "allAccess");
  269. pref("capability.policy.default.Window.length", "allAccess");
  270. pref("capability.policy.default.Window.location", "allAccess");
  271. pref("capability.policy.default.Window.opener", "allAccess");
  272. pref("capability.policy.default.Window.parent", "allAccess");
  273. pref("capability.policy.default.Window.self", "allAccess");
  274. pref("capability.policy.default.Window.top", "allAccess");
  275. pref("capability.policy.default.Window.window", "allAccess");
  276.  
  277. // Restrictions on the DOM for mail/news - see bugs 66938 and 84545
  278. pref("capability.policy.mailnews.sites", "mailbox: imap: news:");
  279.  
  280. pref("capability.policy.mailnews.*.attributes.get", "noAccess");
  281. pref("capability.policy.mailnews.*.baseURI.get", "noAccess");
  282. pref("capability.policy.mailnews.*.data.get", "noAccess");
  283. pref("capability.policy.mailnews.*.getAttribute", "noAccess");
  284. pref("capability.policy.mailnews.*.getAttributeNS", "noAccess");
  285. pref("capability.policy.mailnews.*.getNamedItem", "noAccess");
  286. pref("capability.policy.mailnews.*.getNamedItemNS", "noAccess");
  287. pref("capability.policy.mailnews.*.host.get", "noAccess");
  288. pref("capability.policy.mailnews.*.hostname.get", "noAccess");
  289. pref("capability.policy.mailnews.*.href.get", "noAccess");
  290. pref("capability.policy.mailnews.*.innerHTML.get", "noAccess");
  291. pref("capability.policy.mailnews.*.lowSrc.get", "noAccess");
  292. pref("capability.policy.mailnews.*.nodeValue.get", "noAccess");
  293. pref("capability.policy.mailnews.*.pathname.get", "noAccess");
  294. pref("capability.policy.mailnews.*.protocol.get", "noAccess");
  295. pref("capability.policy.mailnews.*.src.get", "noAccess");
  296. pref("capability.policy.mailnews.*.substringData.get", "noAccess");
  297. pref("capability.policy.mailnews.*.text.get", "noAccess");
  298. pref("capability.policy.mailnews.*.title.get", "noAccess");
  299. pref("capability.policy.mailnews.DOMException.toString", "noAccess");
  300. pref("capability.policy.mailnews.HTMLAnchorElement.toString", "noAccess");
  301. pref("capability.policy.mailnews.HTMLDocument.domain", "noAccess");
  302. pref("capability.policy.mailnews.HTMLDocument.URL", "noAccess");
  303. pref("capability.policy.mailnews.Location.toString", "noAccess");
  304. pref("capability.policy.mailnews.Range.toString", "noAccess");
  305. pref("capability.policy.mailnews.Window.blur", "noAccess");
  306. pref("capability.policy.mailnews.Window.focus", "noAccess");
  307. pref("capability.policy.mailnews.Window.innerWidth.set", "noAccess");
  308. pref("capability.policy.mailnews.Window.innerHeight.set", "noAccess");
  309. pref("capability.policy.mailnews.Window.moveBy", "noAccess");
  310. pref("capability.policy.mailnews.Window.moveTo", "noAccess");
  311. pref("capability.policy.mailnews.Window.name.set", "noAccess");
  312. pref("capability.policy.mailnews.Window.outerHeight.set", "noAccess");
  313. pref("capability.policy.mailnews.Window.outerWidth.set", "noAccess");
  314. pref("capability.policy.mailnews.Window.resizeBy", "noAccess");
  315. pref("capability.policy.mailnews.Window.resizeTo", "noAccess");
  316. pref("capability.policy.mailnews.Window.screenX.set", "noAccess");
  317. pref("capability.policy.mailnews.Window.screenY.set", "noAccess");
  318. pref("capability.policy.mailnews.Window.sizeToContent", "noAccess");
  319. pref("capability.policy.mailnews.document.load", "noAccess");
  320. pref("capability.policy.mailnews.XMLHttpRequest.channel", "noAccess");
  321. pref("capability.policy.mailnews.XMLHttpRequest.responseXML", "noAccess");
  322. pref("capability.policy.mailnews.XMLHttpRequest.responseText", "noAccess");
  323. pref("capability.policy.mailnews.XMLHttpRequest.status", "noAccess");
  324. pref("capability.policy.mailnews.XMLHttpRequest.statusText", "noAccess");
  325. pref("capability.policy.mailnews.XMLHttpRequest.abort", "noAccess");
  326. pref("capability.policy.mailnews.XMLHttpRequest.getAllResponseHeaders", "noAccess");
  327. pref("capability.policy.mailnews.XMLHttpRequest.getResponseHeader", "noAccess");
  328. pref("capability.policy.mailnews.XMLHttpRequest.open", "noAccess");
  329. pref("capability.policy.mailnews.XMLHttpRequest.send", "noAccess");
  330. pref("capability.policy.mailnews.XMLHttpRequest.setRequestHeader", "noAccess");
  331. pref("capability.policy.mailnews.XMLHttpRequest.readyState", "noAccess");
  332. pref("capability.policy.mailnews.XMLHttpRequest.overrideMimeType", "noAccess");
  333. pref("capability.policy.mailnews.XMLHttpRequest.onload", "noAccess");
  334. pref("capability.policy.mailnews.XMLHttpRequest.onerror", "noAccess");
  335. pref("capability.policy.mailnews.XMLHttpRequest.onreadystatechange", "noAccess");
  336. pref("capability.policy.mailnews.XMLSerializer.serializeToString", "noAccess");
  337. pref("capability.policy.mailnews.XMLSerializer.serializeToStream", "noAccess");
  338. pref("capability.policy.mailnews.DOMParser,parseFromString", "noAccess");
  339. pref("capability.policy.mailnews.DOMParser,parseFromStream", "noAccess");
  340. pref("capability.policy.mailnews.SOAPCall.transportURI", "noAccess");
  341. pref("capability.policy.mailnews.SOAPCall.verifySourceHeader", "noAccess");
  342. pref("capability.policy.mailnews.SOAPCall.invoke", "noAccess");
  343. pref("capability.policy.mailnews.SOAPCall.asyncInvoke", "noAccess");
  344. pref("capability.policy.mailnews.SOAPResponse.fault", "noAccess");
  345. pref("capability.policy.mailnews.SOAPEncoding.styleURI", "noAccess");
  346. pref("capability.policy.mailnews.SOAPEncoding.getAssociatedEncoding", "noAccess");
  347. pref("capability.policy.mailnews.SOAPEncoding.setEncoder", "noAccess");
  348. pref("capability.policy.mailnews.SOAPEncoding.getEncoder", "noAccess");
  349. pref("capability.policy.mailnews.SOAPEncoding.setDecoder", "noAccess");
  350. pref("capability.policy.mailnews.SOAPEncoding.setDecoder", "noAccess");
  351. pref("capability.policy.mailnews.SOAPEncoding.getDecoder", "noAccess");
  352. pref("capability.policy.mailnews.SOAPEncoding.defaultEncoder", "noAccess");
  353. pref("capability.policy.mailnews.SOAPEncoding.defaultDecoder", "noAccess");
  354. pref("capability.policy.mailnews.SOAPEncoding.schemaCollection", "noAccess");
  355. pref("capability.policy.mailnews.SOAPEncoding.encode", "noAccess");
  356. pref("capability.policy.mailnews.SOAPEncoding.decode", "noAccess");
  357. pref("capability.policy.mailnews.SOAPEncoding.mapSchemaURI", "noAccess");
  358. pref("capability.policy.mailnews.SOAPEncoding.unmapSchemaURI", "noAccess");
  359. pref("capability.policy.mailnews.SOAPEncoding.getInternalSchemaURI", "noAccess");
  360. pref("capability.policy.mailnews.SOAPEncoding.getExternalSchemaURI", "noAccess");
  361. pref("capability.policy.mailnews.SOAPFault.element", "noAccess");
  362. pref("capability.policy.mailnews.SOAPFault.faultNamespaceURI", "noAccess");
  363. pref("capability.policy.mailnews.SOAPFault.faultCode", "noAccess");
  364. pref("capability.policy.mailnews.SOAPFault.faultString", "noAccess");
  365. pref("capability.policy.mailnews.SOAPFault.faultActor", "noAccess");
  366. pref("capability.policy.mailnews.SOAPFault.detail", "noAccess");
  367. pref("capability.policy.mailnews.SOAPHeaderBlock.actorURI", "noAccess");
  368. pref("capability.policy.mailnews.SOAPHeaderBlock.mustUnderstand", "noAccess");
  369. pref("capability.policy.mailnews.SOAPParameter", "noAccess");
  370. pref("capability.policy.mailnews.SOAPPropertyBagMutator.propertyBag", "noAccess");
  371. pref("capability.policy.mailnews.SOAPPropertyBagMutator.addProperty", "noAccess");
  372. pref("capability.policy.mailnews.SchemaLoader.load", "noAccess");
  373. pref("capability.policy.mailnews.SchemaLoader.loadAsync", "noAccess");
  374. pref("capability.policy.mailnews.SchemaLoader.processSchemaElement", "noAccess");
  375. pref("capability.policy.mailnews.SchemaLoader.onLoad", "noAccess");
  376. pref("capability.policy.mailnews.SchemaLoader.onError", "noAccess");
  377. pref("capability.policy.mailnews.WSDLLoader.load", "noAccess");
  378. pref("capability.policy.mailnews.WSDLLoader.loadAsync", "noAccess");
  379. pref("capability.policy.mailnews.WSDLLoader.onLoad", "noAccess");
  380. pref("capability.policy.mailnews.WSDLLoader.onError", "noAccess");
  381. pref("capability.policy.mailnews.WebServiceProxyFactory.createProxy", "noAccess");
  382. pref("capability.policy.mailnews.WebServiceProxyFactory.createProxyAsync", "noAccess");
  383. pref("capability.policy.mailnews.WebServiceProxyFactory.onLoad", "noAccess");
  384. pref("capability.policy.mailnews.WebServiceProxyFactory.onError", "noAccess");
  385.  
  386. // XMLExtras
  387. pref("capability.policy.default.XMLHttpRequest.channel", "noAccess");
  388. pref("capability.policy.default.DOMParser.parseFromStream", "noAccess");
  389.  
  390. // Clipboard
  391. pref("capability.policy.default.Clipboard.cutcopy", "noAccess");
  392. pref("capability.policy.default.Clipboard.paste", "noAccess");
  393.  
  394. // Scripts & Windows prefs
  395. pref("browser.block.target_new_window",     false);
  396. pref("dom.disable_image_src_set",           false);
  397. pref("dom.disable_window_flip",             false);
  398. pref("dom.disable_window_move_resize",      false);
  399. pref("dom.disable_window_status_change",    false);
  400.  
  401. pref("dom.disable_window_open_feature.titlebar",    false);
  402. pref("dom.disable_window_open_feature.close",       false);
  403. pref("dom.disable_window_open_feature.toolbar",     false);
  404. pref("dom.disable_window_open_feature.location",    false);
  405. pref("dom.disable_window_open_feature.directories", false);
  406. pref("dom.disable_window_open_feature.personalbar", false);
  407. pref("dom.disable_window_open_feature.menubar",     false);
  408. pref("dom.disable_window_open_feature.scrollbars",  false);
  409. pref("dom.disable_window_open_feature.resizable",   false);
  410. pref("dom.disable_window_open_feature.minimizable", false);
  411. pref("dom.disable_window_open_feature.status",      false);
  412.  
  413. pref("dom.allow_scripts_to_close_windows",          false);
  414.  
  415. pref("dom.disable_open_during_load",                false);
  416. pref("dom.popup_maximum",                           20);
  417. pref("dom.popup_allowed_events", "change click dblclick mouseup reset submit");
  418. pref("dom.disable_open_click_delay", 1000);
  419.  
  420. pref("dom.event.contextmenu.enabled",       true);
  421.  
  422. pref("javascript.enabled",                  true);
  423. pref("javascript.allow.mailnews",           false);
  424. pref("javascript.options.strict",           false);
  425.  
  426. // advanced prefs
  427. pref("advanced.always_load_images",         true);
  428. pref("security.enable_java",                true);
  429. pref("advanced.mailftp",                    false);
  430. pref("image.animation_mode",                "normal");
  431.  
  432. // If there is ever a security firedrill that requires
  433. // us to block certian ports global, this is the pref 
  434. // to use.  Is is a comma delimited list of port numbers
  435. // for example:
  436. //   pref("network.security.ports.banned", "1,2,3,4,5");
  437. // prevents necko connecting to ports 1-5 unless the protocol
  438. // overrides.
  439.  
  440. // Default action for unlisted external protocol handlers
  441. pref("network.protocol-handler.external-default", true);      // OK to load
  442. pref("network.protocol-handler.warn-external-default", true); // warn before load
  443.  
  444. // Prevent using external protocol handlers for these schemes
  445. pref("network.protocol-handler.external.hcp", false);
  446. pref("network.protocol-handler.external.vbscript", false);
  447. pref("network.protocol-handler.external.javascript", false);
  448. pref("network.protocol-handler.external.data", false);
  449. pref("network.protocol-handler.external.ms-help", false);
  450. pref("network.protocol-handler.external.shell", false);
  451. pref("network.protocol-handler.external.vnd.ms.radio", false);
  452. pref("network.protocol-handler.external.help", false);
  453. pref("network.protocol-handler.external.disk", false);
  454. pref("network.protocol-handler.external.disks", false);
  455. pref("network.protocol-handler.external.afp", false);
  456.  
  457. // An exposed protocol handler is one that can be used in all contexts.  A
  458. // non-exposed protocol handler is one that can only be used internally by the
  459. // application.  For example, a non-exposed protocol would not be loaded by the
  460. // application in response to a link click or a X-remote openURL command.
  461. // Instead, it would be deferred to the system's external protocol handler.
  462. // Only internal/built-in protocol handlers can be marked as exposed.
  463.  
  464. // This pref controls the default settings.  Per protocol settings can be used
  465. // to override this value.
  466. pref("network.protocol-handler.expose-all", true);
  467.  
  468. // Example: make IMAP an exposed protocol
  469. // pref("network.protocol-handler.expose.imap", true);
  470.  
  471. pref("network.hosts.smtp_server",           "mail");
  472. pref("network.hosts.pop_server",            "mail");
  473.  
  474. // <http>
  475. pref("network.http.version", "1.1");      // default
  476. // pref("network.http.version", "1.0");   // uncomment this out in case of problems
  477. // pref("network.http.version", "0.9");   // it'll work too if you're crazy
  478. // keep-alive option is effectively obsolete. Nevertheless it'll work with
  479. // some older 1.0 servers:
  480.  
  481. pref("network.http.proxy.version", "1.1");    // default
  482. // pref("network.http.proxy.version", "1.0"); // uncomment this out in case of problems
  483.                                               // (required if using junkbuster proxy)
  484.  
  485. // enable caching of http documents
  486. pref("network.http.use-cache", true);
  487.  
  488. // this preference can be set to override the socket type used for normal
  489. // HTTP traffic.  an empty value indicates the normal TCP/IP socket type.
  490. pref("network.http.default-socket-type", "");
  491.  
  492. pref("network.http.keep-alive", true); // set it to false in case of problems
  493. pref("network.http.proxy.keep-alive", true);
  494. pref("network.http.keep-alive.timeout", 300);
  495.  
  496. // limit the absolute number of http connections.
  497. pref("network.http.max-connections", 24);
  498.  
  499. // limit the absolute number of http connections that can be established per
  500. // host.  if a http proxy server is enabled, then the "server" is the proxy
  501. // server.  Otherwise, "server" is the http origin server.
  502. pref("network.http.max-connections-per-server", 8);
  503.  
  504. // if network.http.keep-alive is true, and if NOT connecting via a proxy, then
  505. // a new connection will only be attempted if the number of active persistent
  506. // connections to the server is less then max-persistent-connections-per-server.
  507. pref("network.http.max-persistent-connections-per-server", 2);
  508.  
  509. // if network.http.keep-alive is true, and if connecting via a proxy, then a
  510. // new connection will only be attempted if the number of active persistent
  511. // connections to the proxy is less then max-persistent-connections-per-proxy.
  512. pref("network.http.max-persistent-connections-per-proxy", 4);
  513.  
  514. // amount of time (in seconds) to suspend pending requests, before spawning a
  515. // new connection, once the limit on the number of persistent connections per
  516. // host has been reached.  however, a new connection will not be created if
  517. // max-connections or max-connections-per-server has also been reached.
  518. pref("network.http.request.max-start-delay", 10);
  519.  
  520. // http specific network timeouts (XXX currently unused)
  521. pref("network.http.connect.timeout",  30);    // in seconds
  522. pref("network.http.request.timeout", 120);    // in seconds
  523.  
  524. // Headers
  525. pref("network.http.accept.default", "text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5");
  526. pref("network.http.sendRefererHeader",      2); // 0=don't send any, 1=send only on clicks, 2=send on image requests as well
  527.  
  528. // Controls whether we send HTTPS referres to other HTTPS sites.
  529. // By default this is enabled for compatibility (see bug 141641)
  530. pref("network.http.sendSecureXSiteReferrer", true);
  531.  
  532. // Maximum number of consecutive redirects before aborting.
  533. pref("network.http.redirection-limit", 20);
  534.  
  535. // Enable http compression: comment this out in case of problems with 1.1
  536. // NOTE: support for "compress" has been disabled per bug 196406.
  537. pref("network.http.accept-encoding" ,"gzip,deflate");
  538.  
  539. pref("network.http.pipelining"      , false);
  540. pref("network.http.proxy.pipelining", false);
  541.  
  542. // Max number of requests in the pipeline
  543. pref("network.http.pipelining.maxrequests" , 4);
  544.  
  545. // </http>
  546.  
  547. // This preference controls whether or not internationalized domain names (IDN)
  548. // are handled.  IDN requires a nsIIDNService implementation.
  549. pref("network.enableIDN", true);
  550.  
  551. // This preference specifies a list of domains for which DNS lookups will be
  552. // IPv4 only. Works around broken DNS servers which can't handle IPv6 lookups
  553. // and/or allows the user to disable IPv6 on a per-domain basis. See bug 68796.
  554. pref("network.dns.ipv4OnlyDomains", ".doubleclick.net");
  555.  
  556. // This preference can be used to turn off IPv6 name lookups. See bug 68796.
  557. pref("network.dns.disableIPv6", false);
  558.  
  559. // This preference controls whether or not URLs with UTF-8 characters are
  560. // escaped.  Set this preference to TRUE for strict RFC2396 conformance.
  561. pref("network.standard-url.escape-utf8", true);
  562.  
  563. // This preference controls whether or not URLs are always encoded and sent as
  564. // UTF-8.
  565. pref("network.standard-url.encode-utf8", false);
  566.  
  567. // Idle timeout for ftp control connections - 5 minute default
  568. pref("network.ftp.idleConnectionTimeout", 300);
  569.  
  570. // directory listing format - constants are defined in nsIDirectoryListing.idl
  571. // Do not set this to 0...
  572. pref("network.dir.format", 2);
  573.  
  574. // enables the prefetch service (i.e., prefetching of <link rel="next"> URLs).
  575. pref("network.prefetch-next", true);
  576.  
  577.  
  578. // The following prefs pertain to the negotiate-auth extension (see bug 17578),
  579. // which provides transparent Kerberos or NTLM authentication using the SPNEGO
  580. // protocol.  Each pref is a comma-separated list of keys, where each key has
  581. // the format:
  582. //   [scheme "://"] [host [":" port]]
  583. // For example, "foo.com" would match "http://www.foo.com/bar", etc.
  584.  
  585. // This list controls which URIs can use the negotiate-auth protocol.  This
  586. // list should be limited to the servers you know you'll need to login to.
  587. pref("network.negotiate-auth.trusted-uris", "");
  588. // This list controls which URIs can support delegation.
  589. pref("network.negotiate-auth.delegation-uris", "");
  590.  
  591. // The following prefs are used to enable automatic use of the operating
  592. // system's NTLM implementation to silently authenticate the user with their
  593. // Window's domain logon.  By default, this is enabled for proxy servers.
  594. // The trusted-uris pref follows the format of the trusted-uris pref for
  595. // negotiate authentication.
  596. pref("network.automatic-ntlm-auth.allow-proxies", true);
  597. pref("network.automatic-ntlm-auth.trusted-uris", "");
  598.  
  599.  
  600. // sspitzer:  change this back to "news" when we get to beta.
  601. // for now, set this to news.mozilla.org because you can only
  602. // post to the server specified by this pref.
  603. pref("network.hosts.nntp_server",           "news.mozilla.org");
  604.  
  605. pref("network.image.imageBehavior",         0); // 0-Accept, 1-dontAcceptForeign, 2-dontUse
  606. pref("network.image.warnAboutImages",       false);
  607. pref("network.proxy.autoconfig_url",        "");
  608. pref("network.proxy.type",                  0);
  609. pref("network.proxy.ftp",                   "");
  610. pref("network.proxy.ftp_port",              0);
  611. pref("network.proxy.gopher",                "");
  612. pref("network.proxy.gopher_port",           0);
  613. pref("network.proxy.http",                  "");
  614. pref("network.proxy.http_port",             0);
  615. pref("network.proxy.ssl",                   "");
  616. pref("network.proxy.ssl_port",              0);
  617. pref("network.proxy.socks",                 "");
  618. pref("network.proxy.socks_port",            0);
  619. pref("network.proxy.socks_version",         5);
  620. pref("network.proxy.no_proxies_on",         "localhost, 127.0.0.1");
  621. pref("network.online",                      true); //online/offline
  622. pref("network.cookie.cookieBehavior",       3); // 0-Accept, 1-dontAcceptForeign, 2-dontUse, 3-p3p
  623. pref("network.cookie.disableCookieForMailNews", true); // disable all cookies for mail
  624. pref("network.cookie.lifetimePolicy",       0); // accept normally, 1-askBeforeAccepting, 2-acceptForSession,3-acceptForNDays
  625. pref("network.cookie.alwaysAcceptSessionCookies", false);
  626. pref("network.cookie.prefsMigrated",        false);
  627. pref("network.cookie.lifetime.days",        90);
  628.  
  629. // The following default value is for p3p medium mode.
  630. // See extensions/cookie/resources/content/p3p.xul for the definitions of low/medium/hi
  631. pref("network.cookie.p3p",                  "ffffaaaa");
  632. pref("network.cookie.p3plevel",             1); // 0=low, 1=medium, 2=high, 3=custom
  633.  
  634. pref("network.enablePad",                   false); // Allow client to do proxy autodiscovery
  635. pref("converter.html2txt.structs",          true); // Output structured phrases (strong, em, code, sub, sup, b, i, u)
  636. pref("converter.html2txt.header_strategy",  1); // 0 = no indention; 1 = indention, increased with header level; 2 = numbering and slight indention
  637.  
  638. pref("intl.accept_languages",               "chrome://navigator/locale/navigator.properties");
  639. pref("intl.accept_charsets",                "iso-8859-1,*,utf-8");
  640. pref("intl.collationOption",                "chrome://navigator-platform/locale/navigator.properties");
  641. pref("intl.menuitems.alwaysappendaccesskeys","chrome://navigator/locale/navigator.properties");
  642. pref("intl.charsetmenu.browser.static",     "chrome://navigator/locale/navigator.properties");
  643. pref("intl.charsetmenu.browser.more1",      "chrome://navigator/locale/navigator.properties");
  644. pref("intl.charsetmenu.browser.more2",      "chrome://navigator/locale/navigator.properties");
  645. pref("intl.charsetmenu.browser.more3",      "chrome://navigator/locale/navigator.properties");
  646. pref("intl.charsetmenu.browser.more4",      "chrome://navigator/locale/navigator.properties");
  647. pref("intl.charsetmenu.browser.more5",      "chrome://navigator/locale/navigator.properties");
  648. pref("intl.charsetmenu.browser.unicode",    "chrome://navigator/locale/navigator.properties");
  649. pref("intl.charsetmenu.mailedit",           "chrome://navigator/locale/navigator.properties");
  650. pref("intl.charsetmenu.browser.cache",      "");
  651. pref("intl.charsetmenu.mailview.cache",     "");
  652. pref("intl.charsetmenu.composer.cache",     "");
  653. pref("intl.charsetmenu.browser.cache.size", 5);
  654. pref("intl.charset.detector",               "chrome://navigator/locale/navigator.properties");
  655. pref("intl.charset.default",                "chrome://navigator-platform/locale/navigator.properties");
  656. pref("intl.content.langcode",               "chrome://communicator-region/locale/region.properties");
  657. pref("intl.locale.matchOS",                 false);
  658. // fallback charset list for Unicode conversion (converting from Unicode)
  659. // currently used for mail send only to handle symbol characters (e.g Euro, trademark, smartquotes)
  660. // for ISO-8859-1
  661. pref("intl.fallbackCharsetList.ISO-8859-1", "windows-1252");
  662. pref("font.language.group",                 "chrome://navigator/locale/navigator.properties");
  663.  
  664. pref("images.dither", "auto");
  665. pref("security.directory",              "");
  666.  
  667. pref("signed.applets.codebase_principal_support", false);
  668. pref("security.checkloaduri", true);
  669. pref("security.xpconnect.plugin.unrestricted", true);
  670. // security-sensitive dialogs should delay button enabling. In milliseconds.
  671. pref("security.dialog_enable_delay", 2000);
  672.  
  673. // Modifier key prefs: default to Windows settings,
  674. // menu access key = alt, accelerator key = control.
  675. // Use 17 for Ctrl, 18 for Alt, 224 for Meta, 0 for none. Mac settings in macprefs.js
  676. pref("ui.key.accelKey", 17);
  677. pref("ui.key.generalAccessKey", 18);
  678. pref("ui.key.menuAccessKey", 18);
  679.  
  680. pref("ui.key.menuAccessKeyFocuses", false); // overridden below
  681. pref("ui.key.saveLink.shift", true); // true = shift, false = meta
  682.  
  683. // Middle-mouse handling
  684. pref("middlemouse.paste", false);
  685. pref("middlemouse.openNewWindow", true);
  686. pref("middlemouse.contentLoadURL", false);
  687. pref("middlemouse.scrollbarPosition", false);
  688.  
  689. // Clipboard behavior
  690. pref("clipboard.autocopy", false);
  691.  
  692. // 0=lines, 1=pages, 2=history , 3=text size
  693. pref("mousewheel.withnokey.action",0);
  694. pref("mousewheel.withnokey.numlines",1);    
  695. pref("mousewheel.withnokey.sysnumlines",true);
  696. pref("mousewheel.withcontrolkey.action",0);
  697. pref("mousewheel.withcontrolkey.numlines",1);
  698. pref("mousewheel.withcontrolkey.sysnumlines",true);
  699. pref("mousewheel.withshiftkey.action",0);
  700. pref("mousewheel.withshiftkey.numlines",1);
  701. pref("mousewheel.withshiftkey.sysnumlines",true);
  702. pref("mousewheel.withaltkey.action",2);
  703. pref("mousewheel.withaltkey.numlines",1);
  704. pref("mousewheel.withaltkey.sysnumlines",false);
  705. pref("mousewheel.horizscroll.withnokey.action",2);
  706. pref("mousewheel.horizscroll.withnokey.numlines",-1);
  707. pref("mousewheel.horizscroll.withnokey.sysnumlines",false);
  708. pref("mousewheel.horizscroll.withcontrolkey.action",2);
  709. pref("mousewheel.horizscroll.withcontrolkey.numlines",-1);
  710. pref("mousewheel.horizscroll.withcontrolkey.sysnumlines",false);
  711. pref("mousewheel.horizscroll.withshiftkey.action",2);
  712. pref("mousewheel.horizscroll.withshiftkey.numlines",-1);
  713. pref("mousewheel.horizscroll.withshiftkey.sysnumlines",false);
  714. pref("mousewheel.horizscroll.withaltkey.action",2);
  715. pref("mousewheel.horizscroll.withaltkey.numlines",-1);
  716. pref("mousewheel.horizscroll.withaltkey.sysnumlines",false);
  717.  
  718. pref("profile.confirm_automigration",true);
  719. // profile.migration_behavior determines how the profiles root is set
  720. // 0 - use NS_APP_USER_PROFILES_ROOT_DIR
  721. // 1 - create one based on the NS4.x profile root
  722. // 2 - use, if not empty, profile.migration_directory otherwise same as 0
  723. pref("profile.migration_behavior",0);
  724. pref("profile.migration_directory", "");
  725.  
  726. // the amount of time (in seconds) that must elapse
  727. // before we think your mozilla profile is defunct
  728. // and you'd benefit from re-migrating from 4.x
  729. // see bug #137886 for more details
  730. //
  731. // if -1, we never think your profile is defunct
  732. // and users will never see the remigrate UI.
  733. pref("profile.seconds_until_defunct", -1);
  734. // We can show it anytime from menus
  735. pref("profile.manage_only_at_launch", false);
  736.  
  737. pref("prefs.converted-to-utf8",false);
  738.  
  739. // --------------------------------------------------
  740. // IBMBIDI 
  741. // --------------------------------------------------
  742. //
  743. // ------------------
  744. //  Text Direction
  745. // ------------------
  746. // 1 = directionLTRBidi *
  747. // 2 = directionRTLBidi
  748. pref("bidi.direction", 1);
  749. // ------------------
  750. //  Text Type
  751. // ------------------
  752. // 1 = charsettexttypeBidi *
  753. // 2 = logicaltexttypeBidi
  754. // 3 = visualtexttypeBidi
  755. pref("bidi.texttype", 1);
  756. // ------------------
  757. //  Controls Text Mode
  758. // ------------------
  759. // 1 = logicalcontrolstextmodeBidiCmd
  760. // 2 = visualcontrolstextmodeBidi <-- NO LONGER SUPPORTED
  761. // 3 = containercontrolstextmodeBidi *
  762. pref("bidi.controlstextmode", 1);
  763. // ------------------
  764. //  Numeral Style
  765. // ------------------
  766. // 0 = nominalnumeralBidi *
  767. // 1 = regularcontextnumeralBidi
  768. // 2 = hindicontextnumeralBidi
  769. // 3 = arabicnumeralBidi
  770. // 4 = hindinumeralBidi
  771. pref("bidi.numeral", 0);
  772. // ------------------
  773. //  Support Mode
  774. // ------------------
  775. // 1 = mozillaBidisupport *
  776. // 2 = OsBidisupport
  777. // 3 = disableBidisupport
  778. pref("bidi.support", 1);
  779. // ------------------
  780. //  Charset Mode
  781. // ------------------
  782. // 1 = doccharactersetBidi *
  783. // 2 = defaultcharactersetBidi
  784. pref("bidi.characterset", 1);
  785.  
  786.  
  787. // used for double-click word selection behavior. Win will override.
  788. pref("layout.word_select.eat_space_to_next_word", false);
  789. pref("layout.word_select.stop_at_punctuation", true);
  790.  
  791. // pref to control whether or not to replace backslashes with Yen signs
  792. // in documents encoded in one of Japanese legacy encodings (EUC-JP, 
  793. // Shift_JIS, ISO-2022-JP)
  794. pref("layout.enable_japanese_specific_transform", false);
  795.  
  796. // pref to force frames to be resizable
  797. pref("layout.frames.force_resizability", false);
  798.  
  799. // pref to permit users to make verified SOAP calls by default
  800. pref("capability.policy.default.SOAPCall.invokeVerifySourceHeader", "allAccess");
  801.  
  802. // if true, allow plug-ins to override internal imglib decoder mime types in full-page mode
  803. pref("plugin.override_internal_types", false);
  804. pref("plugin.expose_full_path", false); // if true navigator.plugins reveals full path
  805.  
  806. // See bug 136985.  Gives embedders a pref to hook into to show
  807. // a popup blocker if they choose.
  808. pref("browser.popups.showPopupBlocker", true);
  809.  
  810. // Pref to control whether the viewmanager code does double-buffering or not
  811. // See http://bugzilla.mozilla.org/show_bug.cgi?id=169483 for further details...
  812. pref("viewmanager.do_doublebuffering", true);
  813.  
  814. // which files will be selected for roaming by default.
  815. // See sroaming/content/prefs/all.js
  816. pref("roaming.default.files", "bookmarks.html,abook.mab,cookies.txt");
  817. // display some general warning to the user about making backups, security etc.
  818. pref("roaming.showInitialWarning", true);
  819.  
  820. // whether use prefs from system
  821. pref("config.use_system_prefs", false);
  822.  
  823. // if the system has enabled accessibility
  824. pref("config.use_system_prefs.accessibility", false);
  825.  
  826. /*
  827.  * What are the entities that you want Mozilla to save using mnemonic
  828.  * names rather than numeric codes? E.g. If set, we'll output  
  829.  * otherwise, we may output 0xa0 depending on the charset.
  830.  *
  831.  * "none"   : don't use any entity names; only use numeric codes.
  832.  * "basic"  : use entity names just for   & < > " for 
  833.  *            interoperability/exchange with products that don't support more
  834.  *            than that.
  835.  * "latin1" : use entity names for 8bit accented letters and other special
  836.  *            symbols between 128 and 255.
  837.  * "html"   : use entity names for 8bit accented letters, greek letters, and
  838.  *            other special markup symbols as defined in HTML4.
  839.  */
  840. //pref("editor.encode_entity",                 "html");
  841.  
  842. pref("editor.resizing.preserve_ratio",       true);
  843. pref("editor.positioning.offset",            0);
  844.  
  845. pref("dom.max_script_run_time", 5);
  846.  
  847. pref("font.name.serif.ar", "Times New Roman");
  848. pref("font.name.sans-serif.ar", "Arial");
  849. pref("font.name.monospace.ar", "Courier New");
  850. pref("font.name.cursive.ar", "Comic Sans MS");
  851.  
  852. pref("font.name.serif.el", "Times New Roman");
  853. pref("font.name.sans-serif.el", "Arial");
  854. pref("font.name.monospace.el", "Courier New");
  855. pref("font.name.cursive.el", "Comic Sans MS");
  856.  
  857. pref("font.name.serif.he", "Narkisim");
  858. pref("font.name.sans-serif.he", "Arial");
  859. pref("font.name.monospace.he", "Fixed Miriam Transparent");
  860. pref("font.name.cursive.he", "Gutmann Yad");
  861. pref("font.name-list.serif.he", "Narkisim, David");
  862. pref("font.name-list.monospace.he", "Fixed Miriam Transparent, Miriam Fixed, Rod, Courier New");
  863. pref("font.name-list.cursive.he", "Gutmann Yad, Ktav, Arial");
  864.  
  865. // For CJK fonts, we list a font twice in name-list, once in the native script and once in English
  866. // because the name of a CJK font returned by Win32 API is beyond our control and depends on
  867. // whether or not Mozilla is run on CJK Win 9x/ME or Win 2k/XP with a CJK locale.
  868. // (see bug 227815)
  869.  
  870. pref("font.name.serif.ja", "∩╝¡∩╝│ ∩╝░µÿĵ£¥"); // "MS PMincho"
  871. pref("font.name.sans-serif.ja", "∩╝¡∩╝│ ∩╝░πé┤πé╖πââπé»"); // "MS PGothic"
  872. pref("font.name.monospace.ja", "∩╝¡∩╝│ πé┤πé╖πââπé»"); // "MS Gothic"
  873. pref("font.name-list.serif.ja", "MS PMincho, ∩╝¡∩╝│ ∩╝░µÿĵ£¥, MS Mincho, MS PGothic, MS Gothic");
  874. pref("font.name-list.sans-serif.ja", "MS PGothic, ∩╝¡∩╝│ ∩╝░πé┤πé╖πââπé», MS Gothic, MS PMincho, MS Mincho");
  875. pref("font.name-list.monospace.ja", "MS Gothic, ∩╝¡∩╝│ πé┤πé╖πââπé», MS Mincho, ∩╝¡∩╝│ µÿĵ£¥, MS PGothic, MS PMincho");
  876.  
  877. pref("font.name.serif.ko", "δ░öφâò"); // "Batang" 
  878. pref("font.name.sans-serif.ko", "Ω╡┤δª╝"); // "Gulim" 
  879. pref("font.name.monospace.ko", "Ω╡┤δª╝∞▓┤"); // "GulimChe" 
  880. pref("font.name.cursive.ko", "Ω╢ü∞ä£"); // "Gungseo"
  881.  
  882. pref("font.name-list.serif.ko", "Batang, δ░öφâò, Gulim, Ω╡┤δª╝"); 
  883. pref("font.name-list.sans-serif.ko", "Gulim, Ω╡┤δª╝"); 
  884. pref("font.name-list.monospace.ko", "GulimChe, Ω╡┤δª╝∞▓┤"); 
  885. pref("font.name-list.cursive.ko", "Gungseo, Ω╢ü∞ä£"); 
  886.  
  887. pref("font.name.serif.th", "Times New Roman");
  888. pref("font.name.sans-serif.th", "Arial");
  889. pref("font.name.monospace.th", "Courier New");
  890. pref("font.name.cursive.th", "Comic Sans MS");
  891.  
  892. pref("font.name.serif.tr", "Times New Roman");
  893. pref("font.name.sans-serif.tr", "Arial");
  894. pref("font.name.monospace.tr", "Courier New");
  895. pref("font.name.cursive.tr", "Comic Sans MS");
  896.  
  897. pref("font.name.serif.x-baltic", "Times New Roman");
  898. pref("font.name.sans-serif.x-baltic", "Arial");
  899. pref("font.name.monospace.x-baltic", "Courier New");
  900. pref("font.name.cursive.x-baltic", "Comic Sans MS");
  901.  
  902. pref("font.name.serif.x-central-euro", "Times New Roman");
  903. pref("font.name.sans-serif.x-central-euro", "Arial");
  904. pref("font.name.monospace.x-central-euro", "Courier New");
  905. pref("font.name.cursive.x-central-euro", "Comic Sans MS");
  906.  
  907. pref("font.name.serif.x-cyrillic", "Times New Roman");
  908. pref("font.name.sans-serif.x-cyrillic", "Arial");
  909. pref("font.name.monospace.x-cyrillic", "Courier New");
  910. pref("font.name.cursive.x-cyrillic", "Comic Sans MS");
  911.  
  912. pref("font.name.serif.x-unicode", "Times New Roman");
  913. pref("font.name.sans-serif.x-unicode", "Arial");
  914. pref("font.name.monospace.x-unicode", "Courier New");
  915. pref("font.name.cursive.x-unicode", "Comic Sans MS");
  916.  
  917. pref("font.name.serif.x-western", "Times New Roman");
  918. pref("font.name.sans-serif.x-western", "Arial");
  919. pref("font.name.monospace.x-western", "Courier New");
  920. pref("font.name.cursive.x-western", "Comic Sans MS");
  921.  
  922. pref("font.name.serif.zh-CN", "σ«ïΣ╜ô"); //MS Song
  923. pref("font.name.sans-serif.zh-CN", "σ«ïΣ╜ô"); //MS Song
  924. pref("font.name.monospace.zh-CN", "σ«ïΣ╜ô"); //MS Song
  925. pref("font.name-list.serif.zh-CN", "MS Song, σ«ïΣ╜ô, SimSun");
  926. pref("font.name-list.sans-serif.zh-CN", "MS Song, σ«ïΣ╜ô, SimSun");
  927. pref("font.name-list.monospace.zh-CN", "MS Song, σ«ïΣ╜ô, SimSun");
  928.  
  929. // Per Taiwanese users' demand. They don't want to use TC fonts for
  930. // rendering Latin letters. (bug 88579)
  931. pref("font.name.serif.zh-TW", "Times New Roman"); 
  932. pref("font.name.sans-serif.zh-TW", "Arial"); 
  933. pref("font.name.monospace.zh-TW", "τ┤░µÿÄΘ½ö");  // MingLiU
  934. pref("font.name-list.serif.zh-TW", "µû░τ┤░µÿÄΘ½ö,PMingLiu,τ┤░µÿÄΘ½ö,MingLiU"); 
  935. pref("font.name-list.sans-serif.zh-TW", "µû░τ┤░µÿÄΘ½ö,PMingLiU,τ┤░µÿÄΘ½ö,MingLiU");
  936. pref("font.name-list.monospace.zh-TW", "MingLiU,τ┤░µÿÄΘ½ö");
  937.  
  938. // hkscsm3u.ttf (HKSCS-2001) :  http://www.microsoft.com/hk/hkscs 
  939. // Hong Kong users have the same demand about glyphs for Latin letters (bug 88579) 
  940. pref("font.name.serif.zh-HK", "Times New Roman"); 
  941. pref("font.name.sans-serif.zh-HK", "Arial"); 
  942. pref("font.name.monospace.zh-HK", "τ┤░µÿÄΘ½ö_HKSCS"); 
  943. pref("font.name-list.serif.zh-HK", "τ┤░µÿÄΘ½ö_HKSCS, MingLiu_HKSCS, Ming(for ISO10646), MingLiU, τ┤░µÿÄΘ½ö"); 
  944. pref("font.name-list.sans-serif.zh-HK", "τ┤░µÿÄΘ½ö_HKSCS, MingLiU_HKSCS, Ming(for ISO10646), MingLiU, τ┤░µÿÄΘ½ö");  
  945. pref("font.name-list.monospace.zh-HK", "MingLiU_HKSCS,  τ┤░µÿÄΘ½ö_HKSCS, Ming(for ISO10646), MingLiU, τ┤░µÿÄΘ½ö");
  946.  
  947. pref("font.name.serif.x-devanagari", "Mangal");
  948. pref("font.name.sans-serif.x-devanagari", "Raghindi");
  949. pref("font.name.monospace.x-devanagari", "Mangal");
  950. pref("font.name-list.serif.x-devanagari", "Mangal, Raghindi");
  951. pref("font.name-list.monospace.x-devanagari", "Mangal, Raghindi");
  952.  
  953. pref("font.name.serif.x-tamil", "Latha");
  954. pref("font.name.sans-serif.x-tamil", "Code2000");
  955. pref("font.name.monospace.x-tamil", "Latha");
  956. pref("font.name-list.serif.x-tamil", "Latha, Code2000");
  957. pref("font.name-list.monospace.x-tamil", "Latha, Code2000");
  958.  
  959. pref("font.default", "serif");
  960. pref("font.size.variable.ar", 16);
  961. pref("font.size.fixed.ar", 13);
  962.  
  963. pref("font.size.variable.el", 16);
  964. pref("font.size.fixed.el", 13);
  965.  
  966. pref("font.size.variable.he", 16);
  967. pref("font.size.fixed.he", 13);
  968.  
  969. pref("font.size.variable.ja", 16);
  970. pref("font.size.fixed.ja", 16);
  971.  
  972. pref("font.size.variable.ko", 16);
  973. pref("font.size.fixed.ko", 16);
  974.  
  975. pref("font.size.variable.th", 16);
  976. pref("font.size.fixed.th", 13);
  977.  
  978. pref("font.size.variable.tr", 16);
  979. pref("font.size.fixed.tr", 13);
  980.  
  981. pref("font.size.variable.x-baltic", 16);
  982. pref("font.size.fixed.x-baltic", 13);
  983.  
  984. pref("font.size.variable.x-central-euro", 16);
  985. pref("font.size.fixed.x-central-euro", 13);
  986.  
  987. pref("font.size.variable.x-cyrillic", 16);
  988. pref("font.size.fixed.x-cyrillic", 13);
  989.  
  990. pref("font.size.variable.x-devanagari", 16);
  991. pref("font.size.fixed.x-devanagari", 13);
  992.  
  993. pref("font.size.variable.x-tamil", 16);
  994. pref("font.size.fixed.x-tamil", 13);
  995.  
  996. pref("font.size.variable.x-unicode", 16);
  997. pref("font.size.fixed.x-unicode", 13);
  998.  
  999. pref("font.size.variable.x-western", 16);
  1000. pref("font.size.fixed.x-western", 13);
  1001.  
  1002. pref("font.size.variable.zh-CN", 16);
  1003. pref("font.size.fixed.zh-CN", 16);
  1004.  
  1005. pref("font.size.variable.zh-TW", 16);
  1006. pref("font.size.fixed.zh-TW", 16);
  1007.  
  1008. pref("font.size.variable.zh-HK", 16);
  1009. pref("font.size.fixed.zh-HK", 16);
  1010.  
  1011. pref("font.size.nav4rounding", false);
  1012.  
  1013. pref("ui.key.menuAccessKeyFocuses", true);
  1014.  
  1015. // override double-click word selection behavior.
  1016. pref("layout.word_select.eat_space_to_next_word", true);
  1017.  
  1018. // print_extra_margin enables platforms to specify an extra gap or margin
  1019. // around the content of the page for Print Preview only
  1020. pref("print.print_extra_margin", 90); // twips (90 twips is an eigth of an inch)
  1021.  
  1022. // This indicates whether it should use the native dialog or the XP Dialog
  1023. pref("print.use_native_print_dialog", true);
  1024.  
  1025. // Locate Java by scanning the Sun JRE installation directory with a minimum version
  1026. // Note: Does not scan if security.enable_java is not true
  1027. pref("plugin.scan.SunJRE", "1.3");
  1028.  
  1029. // Locate plugins by scanning the Adobe Acrobat installation directory with a minimum version
  1030. pref("plugin.scan.Acrobat", "5.0");
  1031.  
  1032. // Locate plugins by scanning the Quicktime installation directory with a minimum version
  1033. pref("plugin.scan.Quicktime", "5.0");
  1034.  
  1035. // Locate and scan the Window Media Player installation directory for plugins with a minimum version
  1036. pref("plugin.scan.WindowsMediaPlayer", "7.0");
  1037.  
  1038. // Locate plugins by the directories specified in the Windows registry for PLIDs
  1039. // Which is currently HKLM\Software\MozillaPlugins\xxxPLIDxxx\Path
  1040. pref("plugin.scan.plid.all", true);
  1041.  
  1042. // Controls the scanning of the Navigator 4.x directory for plugins
  1043. // When pref is missing, the default is to pickup popular plugins such as
  1044. // Flash, Shockwave, Acrobat, and Quicktime. If set to true, ALL plugins
  1045. // will be picked up and if set to false the scan will not happen at all
  1046. //pref("plugin.scan.4xPluginFolder", false);
  1047.  
  1048. // Help Windows NT, 2000, and XP dialup a RAS connection
  1049. // when a network address is unreachable.
  1050. pref("network.autodial-helper.enabled", true);
  1051.  
  1052. // Pref to control whether we set ddeexec subkeys for the http
  1053. // Internet shortcut protocol if we are handling it.  These
  1054. // subkeys will be set only while we are running (to avoid the
  1055. // problem of Windows showing an alert when it tries to use DDE
  1056. // and we're not already running).
  1057. pref("advanced.system.supportDDEExec", true);
  1058.  
  1059. // Use CP932 compatible map for JIS X 0208
  1060. pref("intl.jis0208.map", "CP932");
  1061.  
  1062.  
  1063.  
  1064.  
  1065.  
  1066.  
  1067.  
  1068.  
  1069.